home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / fileutil.13 / fileutil / fileutils-3.13 / acconfig.h < prev    next >
Encoding:
Text File  |  1996-07-08  |  4.8 KB  |  144 lines

  1. /* acconfig.h
  2.    This file is in the public domain.
  3.  
  4.    Descriptive text for the C preprocessor macros that
  5.    the distributed Autoconf macros can define.
  6.    No software package will use all of them; autoheader copies the ones
  7.    your configure.in uses into your configuration header file templates.
  8.  
  9.    The entries are in sort -df order: alphabetical, case insensitive,
  10.    ignoring punctuation (such as underscores).  Although this order
  11.    can split up related entries, it makes it easier to check whether
  12.    a given entry is in the file.
  13.  
  14.    Leave the following blank line there!!  Autoheader needs it.  */
  15.  
  16.  
  17. /* Define if you have the Andrew File System.  */
  18. #undef AFS
  19.  
  20. /* Define to 1 if NLS is requested.  */
  21. #undef ENABLE_NLS
  22.  
  23. /* Define if your system defines TIOCGWINSZ in sys/ioctl.h.  */
  24. #undef GWINSZ_IN_SYS_IOCTL
  25.  
  26. /* Define as 1 if you have catgets and don't want to use GNU gettext.  */
  27. #undef HAVE_CATGETS
  28.  
  29. /* Define as 1 if you have gettext and don't want to use GNU gettext.  */
  30. #undef HAVE_GETTEXT
  31.  
  32. /* Define if your locale.h file contains LC_MESSAGES.  */
  33. #undef HAVE_LC_MESSAGES
  34.  
  35. /* Define to 1 if you have the stpcpy function.  */
  36. #undef HAVE_STPCPY
  37.  
  38. /* Define to `unsigned long' if <sys/types.h> doesn't define.  */
  39. #undef ino_t
  40.  
  41. /* Define if there is a member named d_ino in the struct describing
  42.    directory headers.  */
  43. #undef D_INO_IN_DIRENT
  44.  
  45. /* Define if `struct utimbuf' is declared -- usually in <utime.h>.  */
  46. #undef HAVE_STRUCT_UTIMBUF
  47.  
  48.  
  49. /* Define one of the following to indicate how a program can
  50.    get a list of mounted filesystems.  */
  51.  
  52. /* Define if there is no specific function for reading the list of
  53.    mounted filesystems.  fread will be used to read /etc/mnttab.  [SVR2]  */
  54. #undef MOUNTED_FREAD
  55.  
  56. /* Define if (like SVR2) there is no specific function for reading the
  57.    list of mounted filesystems, and your system has these header files:
  58.    <sys/fstyp.h> and <sys/statfs.h>.  [SVR3]  */
  59. #undef MOUNTED_FREAD_FSTYP
  60.  
  61. /* Define if there is a function named getfsstat for reading the list
  62.    of mounted filesystems.  [DEC Alpha running OSF/1]  */
  63. #undef MOUNTED_GETFSSTAT
  64.  
  65. /* Define if there is a function named getmnt for reading the list of
  66.    mounted filesystems.  [Ultrix]  */
  67. #undef MOUNTED_GETMNT
  68.  
  69. /* Define if there is a function named getmntent for reading the list
  70.    of mounted filesystems, and that function takes a single argument.
  71.    [4.3BSD, SunOS, HP-UX, Dynix, Irix]  */
  72. #undef MOUNTED_GETMNTENT1
  73.  
  74. /* Define if there is a function named getmntent for reading the list of
  75.    mounted filesystems, and that function takes two arguments.  [SVR4]  */
  76. #undef MOUNTED_GETMNTENT2
  77.  
  78. /* Define if there is a function named getmntinfo for reading the list
  79.    of mounted filesystems.  [4.4BSD]  */
  80. #undef MOUNTED_GETMNTINFO
  81.  
  82. /* Define if there is a function named listmntent that can be used to
  83.    list all mounted filesystems. [UNICOS] */
  84. #undef MOUNTED_LISTMNTENT
  85.  
  86. /* Define if there is a function named mntctl that can be used to read
  87.    the list of mounted filesystems, and there is a system header file
  88.    that declares `struct vmount.'  [AIX]  */
  89. #undef MOUNTED_VMOUNT
  90.  
  91. /* Define to the name of the distribution.  */
  92. #undef PACKAGE
  93.  
  94. /* The concatenation of the strings PACKAGE, "-", and VERSION.  */
  95. #undef PACKAGE_VERSION
  96.  
  97.  
  98. /* Define to 1 if ANSI function prototypes are usable.  */
  99. #undef PROTOTYPES
  100.  
  101.  
  102. /* Define one of the following to indicate how a program can obtain
  103.    filesystems usage information.  */
  104.  
  105. /*  Define if  statfs takes 3 args.  [DEC Alpha running OSF/1]  */
  106. #undef STAT_STATFS3_OSF1
  107.  
  108. /* Define if there is no specific function for reading filesystems usage
  109.    information and you have the <sys/filsys.h> header file.  [SVR2]  */
  110. #undef STAT_READ_FILSYS
  111.  
  112. /* Define if statfs takes 2 args and struct statfs has a field named f_bsize.
  113.    [4.3BSD, SunOS 4, HP-UX, AIX PS/2]  */
  114. #undef STAT_STATFS2_BSIZE
  115.  
  116. /* Define if statfs takes 2 args and struct statfs has a field named f_fsize.
  117.    [4.4BSD, NetBSD]  */
  118. #undef STAT_STATFS2_FSIZE
  119.  
  120. /* Define if statfs takes 2 args and the second argument has
  121.    type struct fs_data.  [Ultrix]  */
  122. #undef STAT_STATFS2_FS_DATA
  123.  
  124. /* Define if statfs takes 4 args.  [SVR3, Dynix, Irix, Dolphin]  */
  125. #undef STAT_STATFS4
  126.  
  127. /* Define if there is a function named statvfs.  [SVR4]  */
  128. #undef STAT_STATVFS
  129.  
  130. /* Define if the block counts reported by statfs may be truncated to 2GB
  131.    and the correct values may be stored in the f_spare array.
  132.    [SunOS 4.1.2, 4.1.3, and 4.1.3_U1 are reported to have this problem.
  133.    SunOS 4.1.1 seems not to be affected.]  */
  134. #undef STATFS_TRUNCATES_BLOCK_COUNTS
  135.  
  136. /* Define to the version of the distribution.  */
  137. #undef VERSION
  138.  
  139.  
  140. /* Leave that blank line there!!  Autoheader needs it.
  141.    If you're adding to this file, keep in mind:
  142.    The entries are in sort -df order: alphabetical, case insensitive,
  143.    ignoring punctuation (such as underscores).  */
  144.